home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Lookup 1.0d2 / Includes / CChangeEntryAction.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-03  |  421 b   |  25 lines  |  [TEXT/CWIE]

  1. /*
  2.     CChangeEntryAction.h
  3.  
  4.     History:    
  5.         Thu, 20 Jul 1995    AJR    Created.
  6. */
  7.  
  8. #pragma once
  9.  
  10. #include <LAEAction.h>
  11. #include "CEntry.h"
  12.  
  13. class CLookupDocument;
  14. class CEntryList;
  15.  
  16. // ------------------------------------------------------------
  17. // CLASS CChangeEntryAction
  18.  
  19. class CChangeEntryAction : public LAEAction
  20. {
  21. public:
  22.     CChangeEntryAction(CLookupDocument & inLookupDocument, UInt16 inRow, const CEntry & inNewData);
  23. };
  24.  
  25.